Cube Yogi
Cube Yogi
Leader in Zoho Solutions/Consultation

Lock editing subform rows

Question

You can find this question from this link 👉 Lock editing subform rows

Answer

You can find the solution to the question from the video below

First we need a Workflow to disable all Fields

The Parameters for the Workflow are given below

The Code Snippet is as follows

disable Documents.Document_Id;
disable Documents.Expiration_Date;
disable Documents.Pdf_File;

Next we need a Workflow to enable the current field row only

The Code Snippet is as follows

enable row.Document_Id;
enable row.Pdf_File;
enable row.Expiration_Date;